home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / a-unccon.adb < prev    next >
Text File  |  1994-05-19  |  2KB  |  37 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --               A D A . U N C H E C K E D _ C O N V E R S I O N            --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  Obviously the body below is incorrect, since it is simply a checked
  26. --  conversion. Indeed it is not possible to write a correct body for
  27. --  this generic function in Ada. The approach we take is to provide this
  28. --  bogus body, which is read in as a generic template using the normal
  29. --  mechanisms, then there is a special circuit (in Sem_Ch11) which checks
  30. --  for unchecked conversion and sets the Unchecked_Conversion flag in the
  31. --  N_Conversion node in the template.
  32.  
  33. function Ada.Unchecked_Conversion (Source_Object : Source) return Target is
  34. begin
  35.    return Target (Source_Object);
  36. end Ada.Unchecked_Conversion;
  37.